home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Delphi Magazine Collection 2001
/
Delphi Magazine Collection 20001 (2001).iso
/
DISKS
/
Issue60
/
Clinic
/
LOGOAPP.DPR
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1996-06-11
|
288 b
|
16 lines
program LogoApp;
uses
Forms,
LogoMain in 'LogoMain.pas' {LogoAppForm},
About in 'ABOUT.PAS' {AboutBox};
{$R *.RES}
{$R LOGOSTRS.RES}
begin
Application.CreateForm(TLogoAppForm, LogoAppForm);
Application.CreateForm(TAboutBox, AboutBox);
Application.Run;
end.